home *** CD-ROM | disk | FTP | other *** search
/ Dynamic HTML Construction Kit / Dynamic HTML Construction Kit.iso / source_code / dhtmlunl / dhtml.exe / CD Content / Chap26 / dun26_2.txt < prev    next >
Encoding:
Text File  |  1997-12-18  |  968 b   |  29 lines

  1. var screen_height = screen.height;
  2. var screen_width = screen.width;
  3.  
  4. if (screen_height >= 768) {
  5.     background_img = "images/horizon768.jpg";
  6.     sun_img = "images/sun768.jpg";
  7.     flare_img = "images/flare768.jpg";
  8.     screen_width = 1024;
  9.     screen_height = 768;
  10. } else if (screen_height >= 624) {
  11.     background_img = "images/horizon624.jpg";
  12.     sun_img = "images/sun624.jpg";
  13.     flare_img = "images/flare624.jpg";
  14. } else if (screen_height >= 600) {
  15.     background_img = "images/horizon600.jpg";
  16.     sun_img = "images/sun600.jpg";
  17.     flare_img = "images/flare600.jpg";
  18. } else if (screen_height >= 480) {
  19.     background_img = "images/horizon480.jpg";
  20.     sun_img = "images/sun480.jpg";
  21.     flare_img = "images/flare480.jpg";
  22. } else {
  23.     background_img = "images/horizon600.jpg";
  24.     sun_img = "images/sun600.jpg";
  25.     flare_img = "images/flare600.jpg";
  26.     screen_width = 640;
  27.     screen_height = 480;
  28. }
  29.